This example demonstrates that Flexx apps can be run interactively in the notebook.


In [1]:
%gui asyncio
from flexx import flx
flx.init_notebook()


Flexx is ready for use

Twente temperature demo


In [2]:
from flexxamples.demos.twente import Twente
t = Twente(style='height:300px')
t


Out[2]:

Splines app


In [3]:
from flexxamples.demos.splines import Splines
splines = Splines(style='height:300px')
splines


Out[3]:

In [ ]: